/-app
/-boot
/-imports
/-storage
/-storage/attached
/-storage/attached/api
/-storage/attached/localStorage
/-storage/attached/webSQL
DetectStorage.ts
LoadStorage.ts
UpdateStorage.ts
functions.ts
/-tests
/-typings
stringUtils.ts
teapo.html
1
<!doctype html>
2
<html>
3
<head>
4
<title>Teapo v0.5j</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
<style>###app/layout/TestPage.css###</style> 
9
 
10
</head>
11
<body>
12
 
13
<script>###boot/early-0.js###</script>
14
<script>###imports/knockout/knockout-3.0.0.js###</script>
15
<script>###boot/early-1-with-knockout.js###</script>
16
 
17
<!-- Knockout.js templates --->
18
<script id=Application type="text/html">###app/layout/Application.html###</script>
19
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
20
<script id=TestCase type="text/html">###app/layout/TestCase.html###</script>
21
 
22
<script>  
23
 
24
(function(teapo) {
25
 
26
try {
27
###app/Application.ts:build###
28
 
29
try {
30
  var app = new teapo.app.Application();
31
}
32
catch (initiError) {
33
  alert('Error in Teapo initialization: '+initError.message+' '+initError.stack);
34
}
35
 
36
}
37
catch (declarationError) {
38
  alert('Error in Teapo declaration: '+declarationError.message+' '+declarationError.stack);
39
}
40
 
41
 
42
})(teapo);
43
</script>
44
 
45
</body>
46
</html>